home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / OpenDocSetup / PrefsFile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  861 b   |  42 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        PrefsFile.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     6/24/96    NP        10002: Launch time speedups
  13.          <2>     6/23/96    NP        10002: Launch time speedups.
  14.          <1>     6/21/96    NP        first checked in
  15.  
  16.     To Do:
  17. */
  18.  
  19. #ifndef PREFSFILE_H
  20. #define PREFSFILE_H
  21.  
  22. #ifndef __TYPES__
  23. #include <Types.h>
  24. #endif
  25.  
  26. #ifndef __MEMORY__
  27. #include <Memory.h>
  28. #endif
  29.  
  30. #ifndef __FILES__
  31. #include <Files.h>
  32. #endif
  33.  
  34. short    OpenODPrefsResFile (Boolean createIt, short permissions);
  35. OSErr    SetODDefaultSize (short resFile, Size defaultSize);
  36. OSErr    GetODDefaultSize (short resFile, Size &defaultSize);
  37. Boolean    AliasSystemProcessToStartupFolder();
  38. Boolean    RemoveAliasToSystemProcessFromStartupFolder();
  39. Boolean    OurAliasFileIsInStartupFolder(FSSpec* aliasSpec);
  40.  
  41. #endif
  42.